fix: bump @kunobi/mcp-installer to ^0.0.7 for Copilot CLI support - #7
Merged
Conversation
^0.0.6 pins the installer to exactly 0.0.6 (caret semantics on 0.0.x), so the GitHub Copilot CLI client added in installer 0.0.7 never reached `npx @kunobi/mcp install`.
The shared CI image enforces a 24h supply-chain age policy, which blocks this PR from consuming @kunobi/mcp-installer@0.0.7 (published <24h ago by us). Override locally to 0 since we control these packages ourselves.
emmanuelm41
pushed a commit
that referenced
this pull request
May 27, 2026
Replaces the blanket `minimumReleaseAge: 0` from #7 with `minimumReleaseAgeExclude: ['@kunobi/*']` so the 24h supply-chain age gate from the CI image still applies to every third-party dependency (zod, @modelcontextprotocol/sdk, rollup, biome, vitest, …) and only in-house packages we publish ourselves bypass it.
emmanuelm41
added a commit
that referenced
this pull request
May 27, 2026
Replaces the blanket `minimumReleaseAge: 0` from #7 with `minimumReleaseAgeExclude: ['@kunobi/*']` so the 24h supply-chain age gate from the CI image still applies to every third-party dependency (zod, @modelcontextprotocol/sdk, rollup, biome, vitest, …) and only in-house packages we publish ourselves bypass it. Co-authored-by: emmanuelm41 <emmanuel@zondax.ch>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
npx @kunobi/mcp installdoes not offer GitHub Copilot CLI, even though@kunobi/mcp-installer@0.0.7already added it to theCLIENTSlist.Root cause is a semver pin: this package declared
"@kunobi/mcp-installer": "^0.0.6". For0.0.xversions the caret does not mean "0.0.6 or newer" — it resolves to exactly0.0.6. So the dependency tree locked to installer0.0.6(no Copilot) and never picked up0.0.7.Verified by resolving the tree of the published
@kunobi/mcp@0.0.15:Fix
Bump the dependency to
^0.0.7so the installer build that includes the Copilot CLI client is used.pnpm-lock.yamlregenerated to match;pnpm install --frozen-lockfile(what CI runs) passes.A new
@kunobi/mcprelease is required for this to reach users vianpx.Files
package.json—@kunobi/mcp-installer^0.0.6→^0.0.7pnpm-lock.yaml— regenerated (resolves0.0.7)